home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / frame_21 / PlaceObject2_466_335 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2008-09-24  |  328 b   |  18 lines

  1. onClipEvent(enterFrame){
  2.    _X = _root.car._x;
  3.    if(_root.gravityType == "normal")
  4.    {
  5.       _Y = _root.car._y;
  6.    }
  7.    if(_root.gravityType == "reverse")
  8.    {
  9.       _Y = _root.car._y - 35;
  10.    }
  11.    _rotation = _root.car.Angle;
  12.    if(_root.car.dead)
  13.    {
  14.       _rotation = 0;
  15.       this.gotoAndStop(2);
  16.    }
  17. }
  18.